《TensorFlow2深度學習》學習筆記(一)Tensorflow基礎
本系列筆記記錄了學習TensorFlow2的過程,主要依據 https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book 進行學 ...
本系列筆記記錄了學習TensorFlow2的過程,主要依據 https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book 進行學 ...
本實驗使用了mnist.npz數據集,可以使用在線方式導入,但是我在下載過程中老是因為網絡原因被打斷,因此使用離線方式導入,離線包已傳至github方便大家下載: https://github.co ...
全部代碼如下:(紅色部分為與筆記二不同之處) #1.Import the neccessary libraries needed import numpy as np import tenso ...
本篇筆記包含張量的合並與分割,范數統計,張量填充,限幅等操作。 1.合並與分割 合並 張量的合並可以使用拼接(Concatenate)和堆疊(Stack)操作實現,拼接並不會產生新的維度,而堆疊 ...